chore: stop tracking IDE personal config & test-data runtime files#40
Merged
fightBoxing merged 2 commits intoMay 30, 2026
Merged
Conversation
- .gitignore: add IDE personal files (Copilot chat history, encodings,
MarsCode workspace, material theme) and test-data/ runtime output
- git rm --cached:
* .idea/CopilotChatHistory.xml, CopilotChatTabs.xml, encodings.xml,
MarsCodeWorkspaceAppSettings.xml (per-developer noise)
* test-data/lance-db{1,2,3} & lance-vector-search/** (Lance manifests,
transactions and *.lance files regenerated by tests every run)
Files remain on disk; only removed from index. Working tree no longer
shows perpetual dirty state after running tests or opening the IDE.
Port two additions from lance-format#22 (credit @wombatu-kun): - out/ (IntelliJ/Eclipse output dir) with the same src/main and src/test symmetric exclusions used for target/ and build/ - dependency-reduced-pom.xml (Maven shade plugin artifact) These complement the existing IDE + test-data runtime cleanup so the working tree stays clean across both IntelliJ and Eclipse users.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Stop tracking IDE personal config files and Lance test-data runtime output that were causing perpetual dirty working trees.
Why
.idea/CopilotChatHistory.xml,CopilotChatTabs.xml,encodings.xml,MarsCodeWorkspaceAppSettings.xmlare per-developer IDE state — they change every time someone opens the project and pollute every diff.test-data/lance-db{1,2,3}andtest-data/lance-vector-searchcontain Lance manifests / transactions / *.lance binaries that are regenerated by tests on every run (UUIDs change), so they show up as modified/untracked forever..agents/is a subagent tooling directory that should also be ignored.What's done
.gitignoregit rm --cachedto remove from the index (files stay on disk; no impact on local IDE setup or test runs)Verification
git statusis clean after this commitRisk
Low / chore-only. No source code, no build config, no behavior changes. Affects
.gitignoreand the index only.